home *** CD-ROM | disk | FTP | other *** search
/ Java Interactive Reference Guide / Java Interactive Reference Guide.iso / autorun / java_d.dir / 00204_Field_15.txt < prev    next >
Text File  |  1980-01-11  |  16KB  |  2,225 lines

  1. prompt method
  2.  
  3.  
  4.  
  5.  
  6.  
  7.  
  8.  
  9. Displays an Prompt dialog box with a message and an input field
  10.  
  11.  
  12.  
  13.  
  14.  
  15. Syntax
  16.  
  17.  
  18.  
  19.  
  20. prompt(message, input default)
  21.  
  22.  
  23.  
  24.  
  25.  
  26.  
  27. Description
  28.  
  29.  
  30.  
  31.  
  32.  
  33.  
  34. Use the prompt method to display a dialog box that takes user input.
  35. The arguments, message and input default are
  36. JavaScript values to be displayed as the message and the default value in the input field, respectively.
  37.  
  38.  
  39.  
  40.  
  41.  
  42. Applies to
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49. window
  50.  
  51.  
  52.  
  53.  
  54.  
  55. Examples
  56.  
  57.  
  58.  
  59.  
  60.  
  61. prompt("Enter the number of doughnuts you want:", 12)
  62.  
  63.  
  64.  
  65.  
  66.  
  67.  
  68.  
  69. See also
  70.  
  71.  
  72.  
  73.  
  74. alert, confirm methods
  75.  
  76.  
  77. ------------------------------------------------------------------------
  78.  
  79.  
  80.  
  81.  
  82.  
  83. random method
  84.  
  85.  
  86.  
  87.  
  88.  
  89.  
  90.  
  91. Returns a pseudo-random number between zero and one. xxx NYI.
  92.  
  93.  
  94.  
  95.  
  96.  
  97. Syntax
  98.  
  99.  
  100.  
  101.  
  102.  
  103.  
  104. xxx To be supplied.
  105.  
  106.  
  107.  
  108.  
  109.  
  110. Applies to
  111.  
  112.  
  113.  
  114.  
  115.  
  116.  
  117. Math
  118.  
  119.  
  120.  
  121.  
  122.  
  123. Examples
  124.  
  125.  
  126.  
  127.  
  128.  
  129.  
  130. xxx Examples to be supplied.
  131.  
  132.  
  133. ------------------------------------------------------------------------
  134.  
  135.  
  136.  
  137.  
  138.  
  139. round method
  140.  
  141.  
  142.  
  143.  
  144.  
  145.  
  146.  
  147. Returns its argument, rounded to the nearest integer. In other words, if its argument is n.5 or greater (where n is an integer), returns n+1, otherwise returns n.
  148.  
  149.  
  150.  
  151.  
  152.  
  153. Syntax
  154.  
  155.  
  156.  
  157.  
  158. round(arg)
  159.  
  160.  
  161.  
  162.  
  163.  
  164.  
  165. Applies to
  166.  
  167.  
  168.  
  169.  
  170.  
  171.  
  172. Math
  173.  
  174.  
  175.  
  176.  
  177.  
  178. Examples
  179.  
  180.  
  181.  
  182.  
  183.  
  184.  
  185. xxx Examples to be supplied.
  186.  
  187.  
  188. ------------------------------------------------------------------------
  189.  
  190.  
  191.  
  192.  
  193.  
  194. select method
  195.  
  196.  
  197.  
  198.  
  199.  
  200.  
  201.  
  202. For password, text, and textArea, selects the input area of the object.
  203.  
  204.  
  205.  
  206.  
  207.  
  208. Syntax
  209.  
  210.  
  211.  
  212.  
  213. select()
  214.  
  215.  
  216.  
  217.  
  218.  
  219.  
  220. Description
  221.  
  222.  
  223.  
  224.  
  225.  
  226.  
  227. Use the select method to highlight the input area of a form element. You can use the select method with the focus method to highlight a field and position the cursor for a user response.
  228.  
  229.  
  230.  
  231.  
  232.  
  233. Applies to
  234.  
  235.  
  236.  
  237.  
  238.  
  239.  
  240. password, text, textArea
  241.  
  242.  
  243.  
  244.  
  245.  
  246. Examples
  247.  
  248.  
  249.  
  250.  
  251.  
  252.  
  253. In the following example, the checkPassword function confirms that a user has entered a valid password. If the password is not valid, the select method highlights the password field and focus method returns focus to it so the user can re-enter the password.
  254.  
  255. function checkPassword(userPass) {
  256.    if (badPassword) {
  257.       alert("Please enter your password again.")
  258.       userPass.focus()
  259.       userPass.select()
  260.    }
  261. }
  262.  
  263. This example assumes that the password is defined as:
  264. <INPUT TYPE=password NAME=userPass>/PRE>
  265.  
  266.  
  267.  
  268.  
  269.  
  270. See also
  271.  
  272.  
  273.  
  274.  
  275. blur, focus methods
  276.  
  277.  
  278. ------------------------------------------------------------------------
  279.  
  280.  
  281.  
  282.  
  283.  
  284. setDate method
  285.  
  286.  
  287.  
  288.  
  289.  
  290.  
  291.  
  292.  
  293. Syntax
  294.  
  295.  
  296.  
  297.  
  298. dateObj.setDate(day)
  299.  
  300.  
  301.  
  302. where dateObj is a date object.
  303.  
  304.  
  305.  
  306.  
  307.  
  308. Description
  309.  
  310.  
  311.  
  312.  
  313.  
  314.  
  315.  
  316. Sets the day of the month for the date object.
  317. The argument is an integer from 1 to 31.
  318.  
  319.  
  320.  
  321.  
  322.  
  323. Applies to
  324.  
  325.  
  326.  
  327.  
  328.  
  329.  
  330. Date
  331.  
  332.  
  333.  
  334.  
  335.  
  336. Examples
  337.  
  338.  
  339.  
  340.  
  341.  
  342.  
  343.  
  344. The second statement below changes the day for theBigDay to the 24th of July from its original value.
  345.  
  346. theBigDay = new Date("July 27, 1962 23:30:00")
  347. Xmas95.setDate(24)
  348.  
  349.  
  350.  
  351.  
  352.  
  353.  
  354.  
  355.  
  356. See also
  357.  
  358.  
  359.  
  360.  
  361. xxx To be supplied.
  362.  
  363.  
  364. ------------------------------------------------------------------------
  365.  
  366.  
  367.  
  368.  
  369.  
  370. setHours method
  371.  
  372.  
  373.  
  374.  
  375.  
  376.  
  377.  
  378.  
  379. Syntax
  380.  
  381.  
  382.  
  383.  
  384. dateObj.setHours(hours 
  385.  
  386.  
  387.  
  388. where dateObj is a date object.
  389.  
  390.  
  391.  
  392.  
  393.  
  394. Description
  395.  
  396.  
  397.  
  398.  
  399.  
  400.  
  401.  
  402. Sets the hours in the current time.
  403. The argument is an integer between 0 and 23.
  404.  
  405.  
  406.  
  407.  
  408.  
  409. Applies to
  410.  
  411.  
  412.  
  413.  
  414.  
  415.  
  416. Date
  417.  
  418.  
  419.  
  420.  
  421.  
  422. Examples
  423.  
  424.  
  425.  
  426.  
  427.  
  428. theBigDay.setHours(7)
  429.  
  430.  
  431.  
  432.  
  433.  
  434.  
  435.  
  436. See also
  437.  
  438.  
  439.  
  440.  
  441. xxx To be supplied.
  442.  
  443.  
  444. ------------------------------------------------------------------------
  445.  
  446.  
  447.  
  448.  
  449.  
  450. setMinutes method
  451.  
  452.  
  453.  
  454.  
  455.  
  456.  
  457.  
  458.  
  459. Syntax
  460.  
  461.  
  462.  
  463.  
  464.  
  465.  
  466. dateObj.setMinutes(minutes) 
  467.  
  468.  
  469.  
  470. where dateObj is a date object.
  471.  
  472.  
  473.  
  474.  
  475.  
  476. Description
  477.  
  478.  
  479.  
  480.  
  481.  
  482.  
  483.  
  484. Sets the minutes in the current time. The argument is an integer between 0 and 59.
  485.  
  486.  
  487.  
  488.  
  489.  
  490. Applies to
  491.  
  492.  
  493.  
  494.  
  495.  
  496.  
  497. Date
  498.  
  499.  
  500.  
  501.  
  502.  
  503. Examples
  504.  
  505.  
  506.  
  507.  
  508.  
  509. theBigDay.setMinutes(45)
  510.  
  511.  
  512.  
  513.  
  514.  
  515.  
  516.  
  517. See also
  518.  
  519.  
  520.  
  521.  
  522. xxx To be supplied.
  523.  
  524.  
  525. ------------------------------------------------------------------------
  526.  
  527.  
  528.  
  529.  
  530.  
  531. setMonth method
  532.  
  533.  
  534.  
  535.  
  536.  
  537.  
  538.  
  539.  
  540. Syntax
  541.  
  542.  
  543.  
  544.  
  545. dateObj.setMonth(month) 
  546.  
  547.  
  548.  
  549. where dateObj is a date object.
  550.  
  551.  
  552.  
  553.  
  554.  
  555. Description
  556.  
  557.  
  558.  
  559.  
  560.  
  561.  
  562.  
  563. Sets the month in the current date. The argument is an integer between 0 and 11.
  564.  
  565.  
  566.  
  567.  
  568.  
  569. Applies to
  570.  
  571.  
  572.  
  573.  
  574.  
  575.  
  576. Date
  577.  
  578.  
  579.  
  580.  
  581.  
  582. Examples
  583.  
  584.  
  585.  
  586.  
  587.  
  588. theBigDay.setMonth(6)
  589.  
  590.  
  591.  
  592.  
  593.  
  594.  
  595.  
  596. See also
  597.  
  598.  
  599.  
  600.  
  601. xxx To be supplied.
  602.  
  603.  
  604. ------------------------------------------------------------------------
  605.  
  606.  
  607.  
  608.  
  609.  
  610. setSeconds method
  611.  
  612.  
  613.  
  614.  
  615.  
  616.  
  617.  
  618.  
  619. Syntax
  620.  
  621.  
  622.  
  623.  
  624. dateObj.setSeconds(seconds) 
  625.  
  626.  
  627.  
  628. where dateObj is a date object.
  629.  
  630.  
  631.  
  632.  
  633.  
  634. Description
  635.  
  636.  
  637.  
  638.  
  639.  
  640.  
  641.  
  642. Sets the seconds in the current time. The argument is an integer between 0 and 59.
  643.  
  644.  
  645.  
  646.  
  647.  
  648. Applies to
  649.  
  650.  
  651.  
  652.  
  653.  
  654.  
  655. Date
  656.  
  657.  
  658.  
  659.  
  660.  
  661. Examples
  662.  
  663.  
  664.  
  665.  
  666.  
  667. theBigDay.setSeconds(30)
  668.  
  669.  
  670.  
  671.  
  672.  
  673.  
  674.  
  675. See also
  676.  
  677.  
  678.  
  679.  
  680. xxx To be supplied.
  681.  
  682.  
  683.  
  684. ------------------------------------------------------------------------
  685.  
  686.  
  687.  
  688.  
  689.  
  690. setTime method
  691.  
  692.  
  693.  
  694.  
  695.  
  696.  
  697.  
  698.  
  699.  
  700. Syntax
  701.  
  702.  
  703.  
  704.  
  705.  
  706.  
  707. dateObj.setTime(timevalue) 
  708.  
  709.  
  710.  
  711. where dateObj is a date object.
  712.  
  713.  
  714.  
  715.  
  716.  
  717. Description
  718.  
  719.  
  720.  
  721.  
  722.  
  723.  
  724.  
  725. Sets the value of the date object.
  726. This argument is the number of milliseconds since the epoch 
  727. (1 January 1970 00:00:00)
  728. You can use this method to help assign a date and time to another date object.
  729.  
  730.  
  731.  
  732.  
  733.  
  734. Applies to
  735.  
  736.  
  737.  
  738.  
  739.  
  740.  
  741. Date
  742.  
  743.  
  744.  
  745.  
  746.  
  747. Examples
  748.  
  749.  
  750.  
  751.  
  752.  
  753. theBigDay = new Date("July 1, 1999")
  754. sameAsBigDay = new Date();
  755. sameAsBigDay.setTime(theBigDay.getTime())
  756.  
  757.  
  758.  
  759.  
  760.  
  761. ------------------------------------------------------------------------
  762.  
  763.  
  764.  
  765.  
  766.  
  767. setTimeout method
  768.  
  769.  
  770.  
  771.  
  772.  
  773.  
  774. Evaluates an expression after a specified number of milliseconds have elapsed.
  775.  
  776.  
  777.  
  778.  
  779.  
  780. Syntax
  781.  
  782.  
  783.  
  784.  
  785. timeoutID=setTimeout(expression, msec)
  786.  
  787.  
  788.  
  789. expression is a string expression.
  790.  
  791. msec is a numeric value or numeric string in millisecond units.
  792.  
  793. timeoutID is an identifier that is used only to cancel the evaluation with the clearTimeout method.
  794.  
  795.  
  796.  
  797.  
  798.  
  799. Description
  800.  
  801.  
  802.  
  803.  
  804.  
  805.  
  806. xxx Description to be supplied.
  807.  
  808. Applies to
  809.  
  810.  
  811. window
  812.  
  813.  
  814.  
  815.  
  816.  
  817. Examples
  818.  
  819.  
  820.  
  821.  
  822.  
  823.  
  824. xxx Examples to be supplied.
  825.  
  826.  
  827.  
  828.  
  829.  
  830. See also
  831.  
  832.  
  833.  
  834.  
  835. clearTimeout
  836.  
  837.  
  838. ------------------------------------------------------------------------
  839.  
  840.  
  841.  
  842.  
  843.  
  844. setYear method
  845.  
  846.  
  847.  
  848.  
  849.  
  850.  
  851.  
  852.  
  853. Syntax
  854.  
  855.  
  856.  
  857.  
  858. dateObj.setYear(year) 
  859.  
  860.  
  861.  
  862. where dateObj is a date object.
  863.  
  864.  
  865.  
  866.  
  867.  
  868. Description
  869.  
  870.  
  871.  
  872.  
  873.  
  874.  
  875.  
  876. Sets the year in the current date. Takes as its argument an integer greater than 1900.
  877.  
  878.  
  879.  
  880.  
  881.  
  882. Applies to
  883.  
  884.  
  885.  
  886.  
  887.  
  888.  
  889. Date
  890.  
  891.  
  892.  
  893.  
  894.  
  895. Examples
  896.  
  897.  
  898.  
  899.  
  900.  
  901. theBigDay.setYear(96)
  902.  
  903.  
  904.  
  905.  
  906.  
  907.  
  908.  
  909. See also
  910.  
  911.  
  912.  
  913.  
  914. xxx To be supplied.
  915.  
  916.  
  917. ------------------------------------------------------------------------
  918.  
  919.  
  920.  
  921.  
  922.  
  923. sin method
  924.  
  925.  
  926.  
  927.  
  928.  
  929.  
  930.  
  931. Returns the sine of its argument. The argument is in radians.
  932.  
  933.  
  934.  
  935.  
  936.  
  937. Syntax
  938.  
  939.  
  940.  
  941.  
  942. sin(arg)
  943.  
  944.  
  945.  
  946.  
  947.  
  948.  
  949. Applies to
  950.  
  951.  
  952.  
  953.  
  954.  
  955.  
  956. Math
  957.  
  958.  
  959.  
  960.  
  961.  
  962. Examples
  963.  
  964.  
  965.  
  966.  
  967.  
  968.  
  969. xxx Examples to be supplied.
  970.  
  971.  
  972.  
  973.  
  974.  
  975. See also
  976.  
  977.  
  978.  
  979.  
  980. acos, asin, atan, cos, tan methods
  981.  
  982.  
  983. ------------------------------------------------------------------------
  984.  
  985.  
  986.  
  987.  
  988.  
  989. small method
  990.  
  991.  
  992.  
  993.  
  994.  
  995.  
  996.  
  997. Causes the calling string object to be displayed in small font by surrounding it with HTML small font tags,  <SMALL>..<SMALL>
  998.  
  999.  
  1000.  
  1001.  
  1002.  
  1003. Syntax
  1004.  
  1005.  
  1006.  
  1007.  
  1008. small()
  1009.  
  1010.  
  1011.  
  1012.  
  1013.  
  1014.  
  1015. Description
  1016.  
  1017.  
  1018.  
  1019.  
  1020.  
  1021.  
  1022. xxx Description to be supplied.
  1023.  
  1024.  
  1025.  
  1026.  
  1027.  
  1028. Applies to
  1029.  
  1030.  
  1031.  
  1032.  
  1033.  
  1034.  
  1035. string
  1036.  
  1037.  
  1038.  
  1039.  
  1040.  
  1041. Examples
  1042.  
  1043.  
  1044.  
  1045.  
  1046.  
  1047.  
  1048. xxx Examples to be supplied.
  1049.  
  1050.  
  1051.  
  1052.  
  1053.  
  1054. See also
  1055.  
  1056.  
  1057.  
  1058.  
  1059. big, fontsize methods
  1060.  
  1061.  
  1062. ------------------------------------------------------------------------
  1063.  
  1064.  
  1065.  
  1066.  
  1067.  
  1068. sqrt method
  1069.  
  1070.  
  1071.  
  1072.  
  1073.  
  1074.  
  1075.  
  1076. Returns the square root of its argument.
  1077.  
  1078.  
  1079.  
  1080.  
  1081.  
  1082. Syntax
  1083.  
  1084.  
  1085.  
  1086.  
  1087. sqrt(arg)
  1088.  
  1089.  
  1090.  
  1091.  
  1092.  
  1093.  
  1094. Applies to
  1095.  
  1096.  
  1097.  
  1098.  
  1099.  
  1100.  
  1101. Math
  1102.  
  1103.  
  1104.  
  1105.  
  1106.  
  1107. Examples
  1108.  
  1109.  
  1110.  
  1111.  
  1112.  
  1113.  
  1114. xxx Examples to be supplied.
  1115.  
  1116.  
  1117.  
  1118.  
  1119.  
  1120. See also
  1121.  
  1122.  
  1123.  
  1124.  
  1125. pow method
  1126.  
  1127.  
  1128. ------------------------------------------------------------------------
  1129.  
  1130.  
  1131.  
  1132.  
  1133.  
  1134. strike method
  1135.  
  1136.  
  1137.  
  1138.  
  1139.  
  1140.  
  1141.  
  1142. Causes the calling string object to be displayed as struck out text, by surrounding it with HTML strikeout tags,  <STRIKE>... <STRIKE>
  1143.  
  1144.  
  1145.  
  1146.  
  1147.  
  1148. Syntax
  1149.  
  1150.  
  1151.  
  1152.  
  1153. strike()
  1154.  
  1155.  
  1156.  
  1157.  
  1158.  
  1159.  
  1160. Description
  1161.  
  1162.  
  1163.  
  1164.  
  1165.  
  1166.  
  1167. xxx Description to be supplied.
  1168.  
  1169.  
  1170.  
  1171.  
  1172.  
  1173. Applies to
  1174.  
  1175.  
  1176.  
  1177.  
  1178.  
  1179.  
  1180. string
  1181.  
  1182.  
  1183.  
  1184.  
  1185.  
  1186. Examples
  1187.  
  1188.  
  1189.  
  1190.  
  1191.  
  1192.  
  1193. xxx Examples to be supplied.
  1194.  
  1195.  
  1196.  
  1197.  
  1198.  
  1199. See also
  1200.  
  1201.  
  1202.  
  1203.  
  1204. blink, bold, italics methods
  1205.  
  1206.  
  1207. ------------------------------------------------------------------------
  1208.  
  1209.  
  1210.  
  1211.  
  1212.  
  1213. sub method
  1214.  
  1215.  
  1216.  
  1217.  
  1218.  
  1219.  
  1220.  
  1221. Causes the calling string object to be displayed as a subscript by surrounding it with HTML subscript tags,  <SUB>... <SUB>
  1222.  
  1223.  
  1224.  
  1225.  
  1226.  
  1227. Syntax
  1228.  
  1229.  
  1230.  
  1231.  
  1232. sub()
  1233.  
  1234.  
  1235.  
  1236.  
  1237.  
  1238.  
  1239. Description
  1240.  
  1241.  
  1242.  
  1243.  
  1244.  
  1245.  
  1246. xxx Description to be supplied.
  1247.  
  1248.  
  1249.  
  1250.  
  1251.  
  1252. Applies to
  1253.  
  1254.  
  1255.  
  1256.  
  1257.  
  1258.  
  1259. string
  1260.  
  1261.  
  1262.  
  1263.  
  1264.  
  1265. Examples
  1266.  
  1267.  
  1268.  
  1269.  
  1270.  
  1271.  
  1272. xxx Examples to be supplied.
  1273.  
  1274.  
  1275.  
  1276. sup method
  1277.  
  1278.  
  1279. ------------------------------------------------------------------------
  1280.  
  1281.  
  1282.  
  1283.  
  1284.  
  1285. submit method
  1286.  
  1287.  
  1288.  
  1289.  
  1290.  
  1291.  
  1292.  
  1293. Submits the form.
  1294.  
  1295.  
  1296.  
  1297.  
  1298.  
  1299. Syntax
  1300.  
  1301.  
  1302.  
  1303.  
  1304. submit()
  1305.  
  1306.  
  1307.  
  1308.  
  1309.  
  1310.  
  1311. Description
  1312.  
  1313.  
  1314.  
  1315.  
  1316.  
  1317.  
  1318. xxx Description to be supplied.
  1319.  
  1320.  
  1321.  
  1322.  
  1323.  
  1324. Applies to
  1325.  
  1326.  
  1327.  
  1328.  
  1329.  
  1330.  
  1331. form
  1332.  
  1333.  
  1334.  
  1335.  
  1336.  
  1337. Examples
  1338.  
  1339.  
  1340.  
  1341.  
  1342.  
  1343.  
  1344. xxx Examples to be supplied.
  1345.  
  1346.  
  1347. ------------------------------------------------------------------------
  1348.  
  1349.  
  1350.  
  1351.  
  1352.  
  1353. substring method
  1354.  
  1355.  
  1356.  
  1357.  
  1358.  
  1359.  
  1360.  
  1361. The substring method returns a subset of a string object. If a <b, then it returns the subset starting at character a and ending before character b, considering the first character of the string to be character zero (0). If a >b, then it returns the subset starting at character b and ending at character a. If a = b, then it returns the empty string.
  1362.  
  1363.  
  1364.  
  1365.  
  1366.  
  1367. Syntax
  1368.  
  1369.  
  1370.  
  1371.  
  1372. substring(a, b)
  1373.  
  1374.  
  1375.  
  1376.  
  1377.  
  1378.  
  1379. Description
  1380.  
  1381.  
  1382.  
  1383.  
  1384.  
  1385.  
  1386. xxx Description to be supplied.
  1387.  
  1388.  
  1389.  
  1390.  
  1391.  
  1392. Applies to
  1393.  
  1394.  
  1395.  
  1396.  
  1397.  
  1398.  
  1399. string
  1400.  
  1401.  
  1402.  
  1403.  
  1404.  
  1405. Examples
  1406.  
  1407.  
  1408.  
  1409.  
  1410.  
  1411.  
  1412. If string x is "netscape"then x.substring(0,3) or x.substring(3,0) returns "net" and x.substring(4,7) or x.substring(7,4) returns "cap"
  1413.  
  1414.  
  1415. ------------------------------------------------------------------------
  1416.  
  1417.  
  1418.  
  1419.  
  1420.  
  1421. sup method
  1422.  
  1423.  
  1424.  
  1425.  
  1426.  
  1427.  
  1428.  
  1429. Causes the calling string object to be displayed as a superscript by surrounding it with HTML superscript tags,  <SUP>... <SUP>
  1430.  
  1431.  
  1432.  
  1433.  
  1434.  
  1435. Syntax
  1436.  
  1437.  
  1438.  
  1439.  
  1440. sup()
  1441.  
  1442.  
  1443.  
  1444.  
  1445.  
  1446.  
  1447. Description
  1448.  
  1449.  
  1450.  
  1451.  
  1452.  
  1453.  
  1454. xxx Description to be supplied.
  1455.  
  1456.  
  1457.  
  1458.  
  1459.  
  1460. Applies to
  1461.  
  1462.  
  1463.  
  1464.  
  1465.  
  1466.  
  1467. string
  1468.  
  1469.  
  1470.  
  1471.  
  1472.  
  1473. Examples
  1474.  
  1475.  
  1476.  
  1477.  
  1478.  
  1479.  
  1480. xxx Examples to be supplied.
  1481.  
  1482.  
  1483.  
  1484.  
  1485.  
  1486. See also
  1487.  
  1488.  
  1489.  
  1490.  
  1491. sub method
  1492.  
  1493.  
  1494. ------------------------------------------------------------------------
  1495.  
  1496.  
  1497.  
  1498.  
  1499.  
  1500. tan method
  1501.  
  1502.  
  1503.  
  1504.  
  1505.  
  1506.  
  1507.  
  1508. Returns the tangent of its argument. The argument is in radians.
  1509.  
  1510.  
  1511.  
  1512.  
  1513.  
  1514. Syntax
  1515.  
  1516.  
  1517.  
  1518.  
  1519. tan(arg)
  1520.  
  1521.  
  1522.  
  1523.  
  1524.  
  1525.  
  1526. Applies to
  1527.  
  1528.  
  1529.  
  1530.  
  1531.  
  1532.  
  1533. Math
  1534.  
  1535.  
  1536.  
  1537.  
  1538.  
  1539. Examples
  1540.  
  1541.  
  1542.  
  1543.  
  1544.  
  1545.  
  1546. xxx Examples to be supplied.
  1547.  
  1548.  
  1549.  
  1550.  
  1551.  
  1552. See also
  1553.  
  1554.  
  1555.  
  1556.  
  1557. acos, asin, atan, cos, sin methods
  1558.  
  1559.  
  1560.  
  1561. ------------------------------------------------------------------------
  1562.  
  1563.  
  1564.  
  1565.  
  1566.  
  1567. toGMTString method
  1568.  
  1569.  
  1570.  
  1571.  
  1572.  
  1573.  
  1574.  
  1575.  
  1576.  
  1577. Syntax
  1578.  
  1579.  
  1580.  
  1581.  
  1582. dateObj.toGMTString()
  1583.  
  1584.  
  1585.  
  1586. where dateObj is a date object.
  1587.  
  1588.  
  1589.  
  1590.  
  1591.  
  1592. Description
  1593.  
  1594.  
  1595.  
  1596.  
  1597.  
  1598.  
  1599.  
  1600. Converts a date to a String, using the Internet GMT conventions. 
  1601.  
  1602.  
  1603.  
  1604.  
  1605.  
  1606. Applies to
  1607.  
  1608.  
  1609.  
  1610.  
  1611.  
  1612.  
  1613. Date
  1614.  
  1615.  
  1616.  
  1617.  
  1618.  
  1619. Examples
  1620.  
  1621.  
  1622.  
  1623.  
  1624.  
  1625.  
  1626. today.toGMTString()
  1627.  
  1628.  
  1629.  
  1630.  
  1631.  
  1632. If today is a date object, then toGMTString would convert the date to
  1633. GMT (UTC) using the operating system's time zone offset, and return a string
  1634. value in the following form:
  1635.  
  1636.  
  1637. Mon, 18 Dec 1995 17:28:35 GMT
  1638.  
  1639.  
  1640.  
  1641. ------------------------------------------------------------------------
  1642.  
  1643.  
  1644.  
  1645.  
  1646.  
  1647. toLocaleString method
  1648.  
  1649.  
  1650.  
  1651.  
  1652.  
  1653.  
  1654.  
  1655.  
  1656.  
  1657. Syntax
  1658.  
  1659.  
  1660.  
  1661.  
  1662. dateObj.toLocaleString()
  1663.  
  1664.  
  1665.  
  1666. where dateObj is a date object.
  1667.  
  1668.  
  1669.  
  1670.  
  1671.  
  1672. Description
  1673.  
  1674.  
  1675.  
  1676.  
  1677.  
  1678.  
  1679.  
  1680. Converts a date to a String, using the locale conventions. 
  1681.  
  1682.  
  1683.  
  1684.  
  1685.  
  1686. Applies to
  1687.  
  1688.  
  1689.  
  1690.  
  1691.  
  1692.  
  1693. Date
  1694.  
  1695.  
  1696.  
  1697.  
  1698.  
  1699. Examples
  1700.  
  1701.  
  1702.  
  1703.  
  1704.  
  1705.  
  1706. today.toLocaleString()
  1707.  
  1708.  
  1709.  
  1710.  
  1711.  
  1712. If today is a date object, then toLocaleString will return a string value
  1713. in the following form:
  1714.  
  1715.  
  1716. 12/18/95 17:28:35
  1717.  
  1718.  
  1719.  
  1720. ------------------------------------------------------------------------
  1721.  
  1722.  
  1723.  
  1724.  
  1725.  
  1726. toLowerCase method
  1727.  
  1728.  
  1729.  
  1730.  
  1731.  
  1732.  
  1733.  
  1734. The toLowerCase method of string objects converts the string to all upper case.
  1735.  
  1736.  
  1737.  
  1738.  
  1739.  
  1740. Syntax
  1741.  
  1742.  
  1743.  
  1744.  
  1745. toLowerCase()
  1746.  
  1747.  
  1748.  
  1749.  
  1750.  
  1751.  
  1752. Description
  1753.  
  1754.  
  1755.  
  1756.  
  1757.  
  1758.  
  1759. xxx Description to be supplied.
  1760.  
  1761.  
  1762.  
  1763.  
  1764.  
  1765. Applies to
  1766.  
  1767.  
  1768.  
  1769.  
  1770.  
  1771.  
  1772. string
  1773.  
  1774.  
  1775.  
  1776.  
  1777.  
  1778. Examples
  1779.  
  1780.  
  1781.  
  1782.  
  1783.  
  1784.  
  1785. For example, "ALPHABET"toLowerCase yields "alphabet"
  1786.  
  1787.  
  1788.  
  1789.  
  1790.  
  1791. See also
  1792.  
  1793.  
  1794.  
  1795.  
  1796. toUpperCase method
  1797.  
  1798.  
  1799. ------------------------------------------------------------------------
  1800.  
  1801.  
  1802.  
  1803.  
  1804.  
  1805. toString method
  1806.  
  1807.  
  1808.  
  1809.  
  1810.  
  1811.  
  1812.  
  1813. For location, returns location.href, so you can use location as a string 
  1814. without typing "href" For Date, converts a date to a string.
  1815.  
  1816.  
  1817.  
  1818.  
  1819.  
  1820. Syntax
  1821.  
  1822.  
  1823.  
  1824.  
  1825. toString()
  1826.  
  1827.  
  1828.  
  1829.  
  1830.  
  1831.  
  1832. Description
  1833.  
  1834.  
  1835.  
  1836.  
  1837.  
  1838.  
  1839. xxx Description to be supplied.
  1840.  
  1841.  
  1842.  
  1843.  
  1844.  
  1845. Applies to
  1846.  
  1847.  
  1848.  
  1849.  
  1850.  
  1851.  
  1852. location, Date methods
  1853.  
  1854.  
  1855.  
  1856.  
  1857.  
  1858. Examples
  1859.  
  1860.  
  1861.  
  1862.  
  1863.  
  1864.  
  1865.  
  1866. Here is an example of using toString with a date object, assuming theBigDay is a date object:
  1867.  
  1868.  
  1869. theBigDay.toString()
  1870.  
  1871.  
  1872.  
  1873.  
  1874.  
  1875. More Examples to be supplied.
  1876.  
  1877.  
  1878. ------------------------------------------------------------------------
  1879.  
  1880.  
  1881.  
  1882.  
  1883.  
  1884. toUpperCase method
  1885.  
  1886.  
  1887.  
  1888.  
  1889.  
  1890.  
  1891.  
  1892. The toUpperCase method of string objects converts the string to all upper case.
  1893.  
  1894.  
  1895.  
  1896.  
  1897.  
  1898. Syntax
  1899.  
  1900.  
  1901.  
  1902.  
  1903. toUpperCase()
  1904.  
  1905.  
  1906.  
  1907.  
  1908.  
  1909.  
  1910. Description
  1911.  
  1912.  
  1913.  
  1914.  
  1915.  
  1916.  
  1917. xxx Description to be supplied.
  1918.  
  1919.  
  1920.  
  1921.  
  1922.  
  1923. Applies to
  1924.  
  1925.  
  1926.  
  1927.  
  1928.  
  1929.  
  1930. string
  1931.  
  1932.  
  1933.  
  1934.  
  1935.  
  1936. Examples
  1937.  
  1938.  
  1939.  
  1940.  
  1941.  
  1942.  
  1943. For example, "alphabet"toUpperCase yields "ALPHABET"
  1944.  
  1945.  
  1946.  
  1947.  
  1948.  
  1949. See also
  1950.  
  1951.  
  1952.  
  1953.  
  1954. toLowerCase method
  1955.  
  1956.  
  1957.  
  1958. ------------------------------------------------------------------------
  1959.  
  1960.  
  1961.  
  1962.  
  1963.  
  1964. UTC method
  1965.  
  1966.  
  1967.  
  1968.  
  1969.  
  1970.  
  1971.  
  1972.  
  1973.  
  1974. Syntax
  1975.  
  1976.  
  1977.  
  1978.  
  1979. Date.UTC(year, month, mday [, hrs] [, min] [, sec])
  1980.  
  1981.  
  1982.  
  1983.  
  1984.  
  1985. Description
  1986.  
  1987.  
  1988.  
  1989.  
  1990.  
  1991.  
  1992.  
  1993. UTC takes comma-delimited date parameters and returns the number
  1994. of milliseconds since January 1, 1970 00:00:00, Universal Coordinated Time (GMT).
  1995.  
  1996. The arameters are: 
  1997.  
  1998.  
  1999.  
  2000. ΓÇóyear - a year after 1900 
  2001. ΓÇómonth - a month between 0-11 
  2002. ΓÇódate - day of the month between 1-31 
  2003. ΓÇóhrs - hours between 0-23 
  2004. ΓÇómin - minutes between 0-59 
  2005. ΓÇósec - seconds between 0-59 
  2006.  
  2007.  
  2008.  
  2009.  
  2010.  
  2011.  
  2012.  
  2013. UTC is a static method of Date.  That means that you always use it as
  2014. Date.UTC(), rather than as a method of a date object you created.
  2015.  
  2016.  
  2017.  
  2018.  
  2019.  
  2020. Applies to
  2021.  
  2022.  
  2023.  
  2024.  
  2025.  
  2026.  
  2027. Date
  2028.  
  2029.  
  2030.  
  2031.  
  2032.  
  2033. Examples
  2034.  
  2035.  
  2036.  
  2037.  
  2038.  
  2039.  
  2040.  
  2041. The following statement creates a date object using GMT instead of local time:
  2042.  
  2043.  
  2044. gmtDate = new Date(Date.UTC(96, 11, 1, 0, 0, 0))
  2045.  
  2046.  
  2047.  
  2048.  
  2049.  
  2050.  
  2051.  
  2052. See also
  2053.  
  2054.  
  2055.  
  2056.  
  2057. parse method
  2058.  
  2059.  
  2060.  
  2061. ------------------------------------------------------------------------
  2062.  
  2063.  
  2064.  
  2065.  
  2066.  
  2067. write method
  2068.  
  2069.  
  2070.  
  2071.  
  2072.  
  2073.  
  2074.  
  2075. Write HTML to the current window, in sequence with the HTML containing this SCRIPT. SCRIPTs have no effect on paragraphs or other structures in which they may occur.
  2076.  
  2077.  
  2078.  
  2079.  
  2080.  
  2081. Syntax
  2082.  
  2083.  
  2084.  
  2085.  
  2086. write()
  2087.  
  2088.  
  2089.  
  2090.  
  2091.  
  2092.  
  2093. Description
  2094.  
  2095.  
  2096.  
  2097.  
  2098.  
  2099.  
  2100. xxx Description to be supplied.
  2101.  
  2102.  
  2103.  
  2104.  
  2105.  
  2106. Applies to
  2107.  
  2108.  
  2109.  
  2110.  
  2111.  
  2112.  
  2113. document
  2114.  
  2115.  
  2116.  
  2117.  
  2118.  
  2119. Examples
  2120.  
  2121.  
  2122.  
  2123.  
  2124.  
  2125.  
  2126. xxx Examples to be supplied.
  2127.  
  2128.  
  2129.  
  2130.  
  2131.  
  2132. See also
  2133.  
  2134.  
  2135.  
  2136.  
  2137. writeln method
  2138.  
  2139.  
  2140. ------------------------------------------------------------------------
  2141.  
  2142.  
  2143.  
  2144.  
  2145.  
  2146. writeln method
  2147.  
  2148.  
  2149.  
  2150.  
  2151.  
  2152.  
  2153.  
  2154. The same as write(), but adds a newline character. Note that this affects only preformatted text (inside a <PRE>or <XMP>tag).
  2155.  
  2156.  
  2157.  
  2158.  
  2159.  
  2160. Syntax
  2161.  
  2162.  
  2163.  
  2164.  
  2165. writeln()
  2166.  
  2167.  
  2168.  
  2169.  
  2170.  
  2171.  
  2172. Description
  2173.  
  2174.  
  2175.  
  2176.  
  2177.  
  2178.  
  2179. xxx Description to be supplied.
  2180.  
  2181.  
  2182.  
  2183.  
  2184.  
  2185. Applies to
  2186.  
  2187.  
  2188.  
  2189.  
  2190.  
  2191.  
  2192. document
  2193.  
  2194.  
  2195.  
  2196.  
  2197.  
  2198. Examples
  2199.  
  2200.  
  2201.  
  2202.  
  2203.  
  2204.  
  2205. xxx Examples to be supplied.
  2206.  
  2207.  
  2208.  
  2209.  
  2210.  
  2211. See also
  2212.  
  2213.  
  2214.  
  2215.  
  2216.  
  2217. write method
  2218.  
  2219.  
  2220.  
  2221.  
  2222.  
  2223.  
  2224.  
  2225.